/* fonts and general formatting */
    @font-face {
        font-family: 'Rokkitt';
        src: url(../fonts/Rokkitt-Regular.ttf);
    }

    @font-face {
        font-family: 'Rokkitt';
        src: url(../fonts/Rokkitt-Bold.ttf);
        font-weight: bold;
    }

    @font-face {
        font-family: 'Rokkitt';
        src: url(../fonts/Rokkitt-Italic.ttf);
        font-style: italic;
    }

    @font-face {
        font-family: 'Rokkitt';
        src: url(../fonts/Rokkitt-BoldItalic.ttf);
        font-style: italic;
        font-weight: bold;
    }
    body {
        font-family: 'Rokkitt', sans-serif;
        font-size: 22px;
        /* "color" is the general text color! */
        color: #ffffff;
        margin: 0;
        background-color: #ffffff;
        background-image: url(bricks\ 8.jpg);
    }
    .spoilers {
        background-color: #ffffff;
    }
    .spoilers:hover {
        background-color: transparent;
    }

/* actual webpage stuff */
    /* the flex thing makes it so that the 
    sidebars and the main content are side by side */
    #flex {
        display: flex;
    }
    #container {
        max-width: 900px;
        /* this is the width of your layout! */
        margin: 0 auto;
        /* this centers the entire page */     
    }
    /* These are what links inside the container look like*/
    #container a {
        font-weight: bold;
    }
    #container li{
        margin-bottom: 10px;
    }    
    #header {
        width: 890px;
        /* color of the header */
        background-color: #0074B7;
        height: 150px;
        background-image: url();
        background-size: 100%;
        text-align: center;
        padding-top: 1%;
        padding-bottom: 1%;
        border-bottom: solid;
        border-left: solid;
        border-right: solid;
        border-color: #FFB709;
        border-width: 5px;
    }
    /* sidebar stuff */
    aside {
        background-color: rgb(124, 18, 70);
        width: 200px;
        padding: 20px;
    }
    aside a {color: white;}
    aside a:hover {color: #FFB709}
    /* main is the main content area */
    main {
        background-color: #75B0FF;
        flex: 1;
        padding: 20px;
        order: 2;
        border-right: solid;
        border-left: solid;
        border-color: #FFB709;
        border-width: 5px;        
    }
    main img {
        display: block;
        margin: auto;
    }
    main a {color: #ffffff;}
    main a:hover {color: #FFB709;}
    #welcome-header {
        text-align: center;
    }
    #era-table table{
        table-layout: auto;
        border-collapse: collapse;
        border-spacing: 0;
        width:  100%;
        text-align: center;
    }
    #era-table td{
        border: 1.5px solid #2F6DBF;
        width: 40px;
    }
    #era-table thead{
        background-color: #5591E0;
    }
    #era-table-emma{
        background-color: #0074b7;
    }
    #era-table-trans{
        background-color: purple;
    }
    #era-table-clare {
        background-color: palevioletred;
    }
    #era-table-nc {
        background-color: turquoise;
    }
    .character-table {
        text-align: center;
        width: 100%;
    }
    .character-table img{
       height: 150px;
    }
    .img-container-container {
        text-align: center;
    }
    .img-container {
        display: inline-block;
    }
    footer {
        background-color: #0074b7;
        /* background color for footer */
        width: 800;
        height: 80px;
        padding: 10px;
        text-align: center;
        /* this centers the footer text */
        border-bottom: solid;
        border-left: solid;
        border-right: solid;
        border-color: #FFB709;
        border-width: 5px;  
    }
    footer a {color: #ffffff}
    footer a:hover {color: #FFB709;}
    .box {
        background-color: #072547;
        border: 1px solid #ED64F5;
        padding: 10px;
    }

    #leftSidebar {
        order: 1;
    }

    #rightSidebar {
        order: 3;
    }
/* IDK what this stuff does it was in the preset; i think it has to do with phones */
@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }
    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }
}
